home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 10 / FM Towns Free Software Collection 10.iso / ms_dos / tool / fwcp / src / defs.h < prev    next >
Text File  |  1994-08-21  |  350b  |  22 lines

  1.  
  2. #define TRUE    1
  3. #define FALSE   0
  4. #define ERR     (-1)
  5.  
  6. #define SCR_X   cols_max
  7. #define SCR_Y   lines_max
  8.  
  9. extern    int    cols_max;
  10. extern    int    lines_max;
  11.  
  12. #ifdef    MSDOS
  13. #define    CPYMAX    8
  14. #define    LINSIZ    136
  15. #else
  16. #define    CPYMAX    8
  17. #define    LINSIZ    160
  18. #define iskanji(c)      ((c) & 0x80)
  19. #define iskanji2(c)     ((c) & 0x80)
  20. #endif
  21.  
  22.